home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 104 / MacAddict_104_2005-04.iso / Software / Internet & Communication / WordPress 1.2.2 freeware.dmg / wordpress / wp-comments.php < prev    next >
PHP Script  |  2004-05-19  |  4KB  |  88 lines

  1. <?php // Do not delete these lines
  2.     if ('wp-comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
  3.         die ('Please do not load this page directly. Thanks!');
  4.     $req = get_settings('require_name_email');
  5.     if (($withcomments) or ($single)) {
  6.  
  7.         if (!empty($post->post_password)) { // if there's a password
  8.             if ($_COOKIE['wp-postpass_'.$cookiehash] != $post->post_password) {  // and it doesn't match the cookie
  9. ?>
  10. <p><?php _e("Enter your password to view comments."); ?><p>
  11. <?php
  12.                 return;
  13.             }
  14.         }
  15.  
  16.          $comment_author = (isset($_COOKIE['comment_author_'.$cookiehash])) ? trim($_COOKIE['comment_author_'.$cookiehash]) : '';
  17.         $comment_author_email = (isset($_COOKIE['comment_author_email_'.$cookiehash])) ? trim($_COOKIE['comment_author_email_'.$cookiehash]) : '';
  18.          $comment_author_url = (isset($_COOKIE['comment_author_url_'.$cookiehash])) ? trim($_COOKIE['comment_author_url_'.$cookiehash]) : '';
  19.  
  20.         $comments = $wpdb->get_results("SELECT * FROM $tablecomments WHERE comment_post_ID = '$id' AND comment_approved = '1' ORDER BY comment_date");
  21. ?>
  22.  
  23. <!-- You can start editing here. -->
  24.  
  25. <h2 id="comments"><?php comments_number(__("Comments"), __("1 Comment"), __("% Comments")); ?> 
  26. <?php if ('open' == $post->comment_status) { ?>
  27. <a href="#postcomment" title="<?php _e("Leave a comment"); ?>">»</a>
  28. <?php } ?>
  29. </h2>
  30. <?php if ('open' == $post->ping_status) { ?>
  31. <p><?php _e("The <acronym title=\"Uniform Resource Identifier\">URI</acronym> to TrackBack this entry is:"); ?> <em><?php trackback_url() ?></em></p>
  32. <?php } ?>
  33.  
  34.  
  35. <?php if ($comments) { ?>
  36. <ol id="commentlist">
  37. <?php foreach ($comments as $comment) { ?>
  38.     <li id="comment-<?php comment_ID() ?>">
  39.     <?php comment_text() ?>
  40.     <p><cite><?php comment_type(); ?> <?php _e("by"); ?> <?php comment_author_link() ?> — <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite> <?php edit_comment_link(__("Edit This"), ' |'); ?></p>
  41.     </li>
  42.  
  43. <?php } // end for each comment ?>
  44. </ol>
  45. <?php } else { // this is displayed if there are no comments so far ?>
  46.     <p><?php _e("No comments yet."); ?></p>
  47. <?php } ?>
  48. <p><?php comments_rss_link(__("<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on this post.")); ?></p>
  49. <h2 id="postcomment"><?php _e("Leave a comment"); ?></h2>
  50. <?php if ('open' == $post->comment_status) { ?>
  51. <p><?php _e("Line and paragraph breaks automatic, e-mail address never displayed, <acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed:"); ?> <code><?php echo allowed_tags(); ?></code></p>
  52.  
  53. <form action="<?php echo get_settings('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
  54.     <p>
  55.       <input type="text" name="author" id="author" class="textarea" value="<?php echo $comment_author; ?>" size="28" tabindex="1" />
  56.        <label for="author"><?php _e("Name"); ?></label> <?php if ($req) _e('(required)'); ?>
  57.     <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
  58.     <input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars($_SERVER["REQUEST_URI"]); ?>" />
  59.     </p>
  60.  
  61.     <p>
  62.       <input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="28" tabindex="2" />
  63.        <label for="email"><?php _e("E-mail"); ?></label> <?php if ($req) _e('(required)'); ?>
  64.     </p>
  65.  
  66.     <p>
  67.       <input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="28" tabindex="3" />
  68.        <label for="url"><?php _e("<acronym title=\"Uniform Resource Identifier\">URI</acronym>"); ?></label>
  69.     </p>
  70.  
  71.     <p>
  72.       <label for="comment"><?php _e("Your Comment"); ?></label>
  73.     <br />
  74.       <textarea name="comment" id="comment" cols="70" rows="4" tabindex="4"></textarea>
  75.     </p>
  76.  
  77.     <p>
  78.       <input name="submit" type="submit" tabindex="5" value="<?php _e("Say It!"); ?>" />
  79.     </p>
  80. </form>
  81. <?php } else { // comments are closed ?>
  82. <p><?php _e("Sorry, the comment form is closed at this time."); ?></p>
  83. <?php } ?>
  84.  
  85. <?php // if you delete this the sky will fall on your head
  86. }
  87. ?>
  88.